@import "fonts css";

/* UNIVERSAL */

* {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}

html,
body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  font-size: 100%;
  font-family: 'Helvetica Neue LT Std', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #595959;
}

body {
  overflow-x: hidden;
}

header {
  padding: 1rem 1.5rem 0.5rem;
  background-color: #FFFFFF;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color: #ECECEC;
}

footer {
  padding: 2rem;
}

main section {
  padding: 4rem 1rem;
}

section article {
  padding: 0.5rem 0;
}

img {
  object-fit: cover;
  object-position: 50% 50%;
  height: 100%;
  width: 100%;
}

main section#banner {
  padding: 6rem 1rem;
}

.float-right {
  float: right !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-lineheight {
  line-height: 0;
}

.img-container {
  display: inline-block;
}

.img-store {
  margin: 1rem 0.5rem;
}

[id^="img-storeapple"] {
  padding: 0.125rem 0;
  width: 7.25rem;
  height: 2.75rem;
}

[id^="img-storegoogle"] {
  padding: 0.125rem 0;
  width: 8.5rem;
  height: 2.75rem;
}

#img-logocarnival {
  width: 8.25rem;
  height: 2.75rem;
}

#img-logohfbs {
  width: 10.5rem;
  height: 3.0rem;
}

#img-iconhubapp {
  width: 5.25rem;
  height: 5.25rem;
}

/* TYPOGRAPHY */

.headings {
  font-family: Tempo, sans-serif;
  line-height: 1;
  letter-spacing: -0.25px;
  text-transform: uppercase;
  color: #10549B;
  margin: 1rem 0;
  font-weight: bold;
}

h1 {
  font-size: 2.5rem;
}

.text-3xl {
  font-size: 2rem;
}

.text-2xl {
  font-size: 1.75rem;
}

.text-xl {
  font-size: 1.625rem;
}

.text-lg {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

p,
ul,
ol {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 1.5rem 0;
}

ul {
  list-style-position: outside;
  padding-inline-start: 1rem;
}

li {
  margin: 0.5rem 0;
}

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.justify {
  text-align: justify;
}

/* COLORS */

main section.blue {
  color: #FFFFFF;
  background-color: #10549B;
}

main section.charcoal {
  color: #FFFFFF;
  background-color: #313131;
}

main section.white {
  background-color: #FFFFFF;
}

main section.grey {
  background-color: #F7F7F7;
}

main section.blue h1,
main section.blue .text-3xl,
main section.blue .text-2xl,
main section.blue .text-xl,
main section.blue .text-lg,
main section.blue h6,
main section.charcoal h1,
main section.charcoal .text-3xl,
main section.charcoal .text-2xl,
main section.charcoal .text-xl,
main section.charcoal .text-lg,
main section.charcoal h6 {
  color: #FFFFFF;
}

em {
  font-style: normal;
  color: #DC1125;
}

/* GRID SYSTEM */

.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.row {
  position: relative;
  width: 100%;
}

.row [class^="col"] {
  float: left;
  margin: 0 2%;
  min-height: 2.5rem;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  width: 96%;
}

.col-1-sm {
  width: 4.33%;
}

.col-2-sm {
  width: 12.66%;
}

.col-3-sm {
  width: 21%;
}

.col-4-sm {
  width: 29.33%;
}

.col-5-sm {
  width: 37.66%;
}

.col-6-sm {
  width: 46%;
}

.col-7-sm {
  width: 54.33%;
}

.col-8-sm {
  width: 62.66%;
}

.col-9-sm {
  width: 71%;
}

.col-10-sm {
  width: 79.33%;
}

.col-11-sm {
  width: 87.66%;
}

.col-12-sm {
  width: 96%;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

.hidden-sm {
  display: none;
}

.hidden-lg {
  display: block;
}

a:focus {
  outline-color: rgb(0, 181, 203) !important;
  outline-style: solid !important;
  outline-width: 3px !important;
  outline-offset: 0 !important;
}

@media only screen and (min-width: 752px) {
  .col-1 {
    width: 4.33%;
  }

  .col-2 {
    width: 12.66%;
  }

  .col-3 {
    width: 21%;
  }

  .col-4 {
    width: 29.33%;
  }

  .col-5 {
    width: 37.66%;
  }

  .col-6 {
    width: 46%;
  }

  .col-7 {
    width: 54.33%;
  }

  .col-8 {
    width: 62.66%;
  }

  .col-9 {
    width: 71%;
  }

  .col-10 {
    width: 79.33%;
  }

  .col-11 {
    width: 87.66%;
  }

  .col-12 {
    width: 96%;
  }

  .hidden-sm {
    display: block;
  }

  .hidden-lg {
    display: none;
  }

  main section {
    padding: 4rem 2.5rem;
  }

  h1 {
    font-size: 3.75rem;
  }

  .text-3xl {
    font-size: 2.5rem;
  }

  .text-2xl {
    font-size: 2.25rem;
  }

  .text-xl {
    font-size: 1.75rem;
  }

  .text-lg {
    font-size: 1.5rem;
  }

  h6 {
    font-size: 1.25rem;
  }

  .offset-top {
    padding-top: 1rem;
  }
}

@media only screen and (min-width: 960px) {

  main section {
    padding: 6rem 4rem;
  }

  h1 {
    font-size: 4.5rem;
  }

  .text-3xl {
    font-size: 3.125rem;
  }

  .text-2xl {
    font-size: 2.75rem;
  }

  .text-xl {
    font-size: 2.25rem;
    margin: 4rem 0 1rem;
  }

  .text-lg {
    font-size: 1.75rem;
  }

  h6 {
    font-size: 1.25rem;
  }

  .offset-top {
    padding-top: 2.5rem;
  }
}